home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 026-050 / 045 / whereis / makefile < prev    next >
Makefile  |  1995-03-13  |  829b  |  34 lines

  1. #This makefile is for MenuCat.  
  2. #It is simple, i know, hardly worth all the fuss of a makefile
  3. #But someone has to set an example for the kids.
  4. #
  5. # Macro definitions
  6. #
  7. COMPILE = cc
  8. #        for quick substitution if you prefer Alink
  9. LINK = BLINK
  10. #         disk with lattice, libraries and objs is labelled CC.
  11. ##somebody copied significicant parts thereof into RAM:
  12. LDSK = ram
  13. #
  14. LIBS = $(LDSK):lib/lc.lib+$(LDSK):lib/amiga.lib
  15. OBJS = $(LDSK):lib/Lstartup.obj
  16. #
  17. WhereIs : WhereIs.o
  18.     $(LINK) $(OBJS)+WhereIs.o LIB $(LIBS) TO WhereIs MAP Nil:
  19. #
  20. WhereIs.o : WhereIs.c
  21.     $(COMPILE) -c WhereIs.c
  22. #
  23. #
  24. Where : Where.o
  25.     $(LINK) $(OBJS)+Where.o LIB $(LIBS) TO Where MAP Nil:
  26. #
  27. Where.o : Where.c
  28.     $(COMPILE) -c Where.c
  29. #
  30. archive :
  31.     Delete WhereIs.arc
  32.     arc a WhereIs.arc AAAREADME WhereIs Where WhereIs.doc
  33.     arc a WhereIs.arc Makefile WhereIs.c Where.c
  34.